You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently moz-webgpu-cts --servo process-reports --preset merge ../../Downloads/wpute/* works on servo if all disabled: comment are replaced with disabled: true
This hasn't actually been submitted for review, but 2 design notes on the current contents that, if changed, I could see getting upstreamed:
I think it would be a closer/more honest data model to reorganize the TestScopeenum into two enum fields of a struct instead. One would indicate the ecosystem being worked with (Firefox or Servo), and another would indicate whether the Public or Private directories in the chosen ecosystem. These can be combined into a reformed struct TestScope as separate fields:
With all this, we could probably rename TestPath::from_fx_metadata_test to TestPath::from_metadata_test, and require a Browser to be specified as an argument.
After the last point, I'd like to see servo: bool become a usage of the proposed enum Browser.1 Then, the variant can be passed to the proposed/renamed TestPath::from_metadata_test constructor from CLI.
Footnotes
Perhaps defaulting to --browser=firefox, to preserve the existing CLI experience? ↩
@sagudev: RE: the disabled property not accepting anything but true: Does #143 help?
Looks like it should (although we rewrite all disabled with true values), but I didn't tried it yet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently
moz-webgpu-cts --servo process-reports --preset merge ../../Downloads/wpute/*works on servo if alldisabled: commentare replaced withdisabled: true